curl --request POST \
--url https://api.backside.app/api/v1/integration-keys/{provider}/verify \
--header 'Authorization: Bearer <token>'{
"valid": true,
"last_verified_at": "2023-11-07T05:31:56Z",
"reason": "<string>"
}Always returns 200 — valid: true/false in the body distinguishes
success from failure. The verify endpoint never returns 401/403 for
auth failures; those map to { "valid": false, "reason": "auth_failed" }.
curl --request POST \
--url https://api.backside.app/api/v1/integration-keys/{provider}/verify \
--header 'Authorization: Bearer <token>'{
"valid": true,
"last_verified_at": "2023-11-07T05:31:56Z",
"reason": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Provider identifier
Was this page helpful?